.login-wrapper {
    width: 100%;
    min-height: 100vh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
    background-color: #f8f8f8;
    background-image: url(/images/login_bg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.login-wrapper .login-form-wrapper{
    max-width: 432px;
    width: 100%;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 0 24px 0 rgb(0 0 0 / 6%);
    border: solid 2px #eff3ff;
    background-color: #ffffff;
}

.login-wrapper .login-form-wrapper .login-title h3 {
    /* font-size: 25px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #08104D;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: solid 1px rgba(151, 151, 151, 0.2);
    margin-bottom: 20px; */
    font-size: 24px;
    font-weight: 600;
    color: #666a80;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.login-wrapper .login-form-wrapper .login-title p {
    letter-spacing: 0.88px;
    color: #666a80;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
    text-align: center;
}
.login-wrapper .login-form-wrapper .input-group .form-control {
    /* height: 50px;
    border-radius: 3px;
    border: solid 1px #d5dce0;
    background-color: #ffffff;
    padding: 15px 20px 15px; */
    padding: 12px 20px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: solid 2px var(--lightblue);
    background-color: #f8f8f8;
    width: 100%;
    height: 44px;
    outline: none;
}
.login-wrapper .login-form-wrapper label {
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1px;
    color: var(--secondaryblue);
    display: block;
}
.login-wrapper .login-form-wrapper .input-group{
    margin-bottom: 20px;
}

.login-wrapper .login-form-wrapper .input-login-btn .form-control {
    height: 48px;
    border-radius: 4px;
    background-color: #2843DF;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: #ffffff;
    transition: 0.5s ease-in-out;
}
.login-wrapper .login-form-wrapper .input-group .password-wrapper .form-control {
    padding-right: 30px ;
}

.login-wrapper .login-form-wrapper .input-login-btn {
    margin: 24px 0 0px;
}

.login-wrapper .login-form-wrapper .input-login-btn .form-control:hover {
    background-color: #08104D;
    transition: 0.5s ease-in-out;
}

.login-wrapper .login-wrapper-logo img {
    height: 64px;
    vertical-align: middle;
    margin-bottom: 28px;
}

.help-block {
    display:block;
    width: 100%;
    margin-top: 5px;
}



/* toggle password button  */
input::-ms-reveal,
input::-ms-clear {
display: none;
}
.toggle-Password-btn{
    position: absolute;   
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: none;
    background: none;
    outline: none;
    padding: 0;
    display: grid;
    place-items: center;
    opacity: 0.4;
}
.toggle-Password-btn img{
    width: 18px;
    height: 18px;
}
/* toggle password button  */


/* 2 factor authentication  */
.resendOtpText{
    font-size: 13px;
}
.otp-input-wrapper{
    max-width: 300px;
    width: 100%;
    margin:auto;
    display: flex;
    justify-content: space-between;
}
.otp-input-wrapper input{
    width: 40px !important;
    text-align: center;
    user-select: none;
}
/* 2 factor authentication  */